home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power Programmierung
/
Power-Programmierung (Tewi)(1994).iso
/
magazine
/
pcmagazi
/
1988
/
19
/
wipe.bat
< prev
next >
Wrap
DOS Batch File
|
1988-10-11
|
334b
|
18 lines
ECHO OFF
CLS
IF "%1" == "" GOTO HELP
ECHO The file %1 is about to be permanently deleted!!
ECHO to exit press [CTRL-BREAK] or
PAUSE
DEL %1
COPY WIPE.DAT %1 > NUL
DEL %1
ECHO %1 deleted
GOTO END
:HELP
ECHO To permanently delete a file, type
ECHO WIPE name
ECHO Where name is the file you wish to wipe
:END